Executes any SQL statement outside TMyQuery or TMyCommand components.
function ExecSQL(const Text: string; const Params: array of variant): variant; override;
Call the ExecSQL method to execute any SQL statement outside TMyQuery or TMyCommand components. Supply the Params array with values of parameters arranged in the same order as they appear in SQL statement that is passed in Text string parameter.
Note: If a query doesn't have parameters (Params.Count = 0), this query will be executed faster.